home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-08-03 | 1.0 KB | 42 lines | [TEXT/CWIE] |
- BSDVBLLib v1.0
- BuggySoft™ Development
- By Scott Dunbar.
- © 1997.
-
- email : buggysft@aimnet.com
- web : http://www.aimnet.com/~buggysft/
- ftp : ftp://ftp.aimnet.com/pub/users/buggysft/
-
- BSDVBLLib is a CodeWarrior 11 library that makes using VBL tasks a lot easier to do. The only
- reason that I made this is because before I knew where to look, I had a hell of a time trying
- to use VBL tasks...so I threw this together to help out those who are just getting started in
- programming.
-
-
- Here's an example of the correct use:
-
- {
- // Init the library and install the VBL task
- InitVBLLib();
-
- while (!Button())
- // the VBL task calls for an update, draw something
- if (vblUpdate) DrawSomethingToTheScreen();
-
- // Dispose of the library and remove the VBL task
- DisposeVBLLib();
- }
-
- Notes
- The VBL task installed is a Slot-VBL task.
- This library is only PPC right now.
-
- For a working example of the library in use, check in the 'BSD VBL Example' folder
- contained in this archive.
-
- E-mail me for updates at:
- buggysft@aimnet.com
-
-
- Thanks!
- - Scott Dunbar